commit | 3607f8640d952cc65ec9b4c3647755fe70cb5330 | [log] [tgz] |
---|---|---|
author | Marshall Clow <mclow.lists@gmail.com> | Sun May 10 13:26:57 2015 |
committer | Marshall Clow <mclow.lists@gmail.com> | Sun May 10 13:26:57 2015 |
tree | 8fd3d445ce75fe16e94b919eb6e02590cee1cc39 | |
parent | dbaf7a0d31ac7d5e3121686f1e771d558d62a34b [diff] |
Remove some debugging printout lines. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@236949 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp b/test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp index 51b16ec..e1b30bf 100644 --- a/test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp +++ b/test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp
@@ -24,9 +24,7 @@ template <typename Vec> void test ( Vec &v ) { - std::cout << "Size, cap: " << v.size() << " " << v.capacity() << std::endl; v.assign(5, 6); - std::cout << "Size, cap: " << v.size() << " " << v.capacity() << std::endl; assert(v.size() == 5); assert(is_contiguous_container_asan_correct(v)); assert(std::all_of(v.begin(), v.end(), is6));